home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 6: Level 6 / 17 Bit - Level 6 (1998)(Epic Marketing)[!].iso / quartz / q0528.dms / q0528.adf / stat.h < prev    next >
C/C++ Source or Header  |  1991-02-02  |  382b  |  28 lines

  1.  
  2. /*
  3.  *  SYS/STAT.H
  4.  */
  5.  
  6. #ifndef _SYS_STAT_H
  7. #define _SYS_STAT_H
  8.  
  9. #ifndef LIBRARIES_DOS_H
  10. #include <libraries/dos.h>
  11. #endif
  12.  
  13. #define S_IFMT        0xF0000
  14. #define S_IFREG     0x10000
  15. #define S_IFDIR     0x20000
  16. #define S_IFLNK     0x30000
  17. #define S_IFCHR     0x40000
  18. #define S_IFBLK     0x50000
  19.  
  20. struct stat {
  21.     long    st_mode;
  22.     long    st_size;
  23.     long    st_ctime;
  24. };
  25.  
  26. #endif
  27.  
  28.